home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 233 / Computer Shopper 233 / ComputerShopperDVD233.iso / mpf / eng / shared / agentdui.cab / scui.dll / HTML / CMNIDS.VBS < prev    next >
Encoding:
Text File  |  2005-07-27  |  3.4 KB  |  86 lines

  1. Const DB_VSO_APPID = "VSO"
  2. Const DB_MPF_APPID = "MPF"
  3. Const DB_MPS_APPID = "MPS"
  4. Const DB_MYS_APPID = "MYS"
  5. Const DB_MSK_APPID = "MSK"
  6.  
  7. Const DB_APPID      = "AppId"
  8. Const DB_TABIMAGE   = "TabImage"
  9. Const DB_SELTABIMAGE  = "SelTabImage"
  10. Const DB_TABTEXT    = "TabText"
  11. Const DB_HOMEPAGE   = "HomePage"
  12. Const DB_HELP       = "Help"
  13. Const DB_CONTENT    = "content"
  14. Const DB_DEF_SECNEWS = "DefaultSecurityNews"
  15. Const DB_APPNAME = "AppName"
  16.  
  17. Const AGENT_HELP = "Agent.chm"
  18.  
  19. Const DB_REGKEY_AGENT_STR = "HKLM\Software\McAfee.com\Agent"
  20. Const DB_REGKEY_LINK_STR = "HKLM\Software\McAfee.com\Agent\Links"
  21. Const DB_REGKEY_UPDATE_STR = "HKLM\Software\McAfee.com\Agent\Update"
  22.  
  23. Const DB_REGKEY_VSO_STR = "HKLM\Software\McAfee.com\VirusScan Online"
  24. Const DB_REGKEY_MPF_STR = "HKLM\Software\McAfee.com\Personal Firewall"
  25. Const DB_REGKEY_MPS_STR = "HKLM\Software\McAfee.com\Privacy Service"
  26. Const DB_REGKEY_MSK_STR = "HKLM\Software\McAfee.com\SpamKiller"
  27.  
  28. '4.0 Application Update installation page URLs
  29. Const LINK_UPDATE_VSO_URL = "UpdateVSOUrl"
  30. Const LINK_UPDATE_MPF_URL = "UpdateMPFUrl"
  31. Const LINK_UPDATE_MPS_URL = "UpdateMPSUrl"
  32. Const LINK_UPDATE_MPFPLUS_URL = "UpdateMPFPlusUrl"
  33. Const LINK_UPDATE_MSK_URL = "UpdateMSKUrl"
  34. Const LINK_ALERT_PING_URL = "AlertPingURL"
  35.  
  36. Const CLSID_LIC = "{27CDC360-101B-48ff-96F0-8580AD849AAD}"
  37.  
  38. Const CLSID_CoMCAppHelper = "{D2D8D3C0-C750-4703-A6AD-75D6B578FFE6}"
  39. Const CLSID_CoMCShell = "{CA145D71-4BCB-461D-BCBE-C01C42867380}"
  40. Const CLSID_CoMCInstaller = "{36C417C6-13C6-448B-9784-DD73A93B0582}"
  41. Const CLSID_CoMCOS = "{4ED9DDF0-7479-4BBE-9335-5A1EDB1D8A21}"
  42. Const CLSID_CoMCFileSystem = "{5940894F-4BA9-4FAC-ACFD-2F56F7CE0E3B}"
  43. Const CLSID_CoMCRegistry = "{4C29D864-C55A-46DD-865C-17A1B7CC1A1A}"
  44.  
  45. Const CLSID_CoMCSecurityIndex = "{9ECF572B-8638-4FEB-BBAC-D6A9631B4D98}"
  46. Const CLSID_MCAgent = "{C7E39D60-7A9F-42bf-ABB1-03DC0FA4F493}"
  47.  
  48. 'Color schemes and corner images for Title rows in all pages
  49. Const DB_NOTINSTALLED_BGCLR_STR = "#FFEBEB"
  50. Const DB_NOTINSTALLED_BORDERCLR_STR = "#F3D7D7"
  51.  
  52. Const DB_ENABLED_BGCLR_STR = "#E2FFDE"
  53. Const DB_ENABLED_BORDERCLR_STR = "#97E3A2"
  54.  
  55. Const DB_DISABLED_BGCLR_STR = "#F6F7E5"
  56. Const DB_DISABLED_BORDERCLR_STR = "#E3E3D7"
  57.  
  58. Const DB_NOTINSTALLED_LTIMG_STR = "images\White_Pink_lt_corner.gif"
  59. Const DB_NOTINSTALLED_LBIMG_STR = "images\White_Pink_lb_corner.gif"
  60. Const DB_NOTINSTALLED_RTIMG_STR = "images\White_Pink_rt_corner.gif"
  61. Const DB_NOTINSTALLED_RBIMG_STR = "images\White_Pink_rb_corner.gif"
  62.  
  63. Const DB_ENABLED_LTIMG_STR = "images\White_Green_lt_corner.gif"
  64. Const DB_ENABLED_LBIMG_STR = "images\White_Green_lb_corner.gif"
  65. Const DB_ENABLED_RTIMG_STR = "images\White_Green_rt_corner.gif"
  66. Const DB_ENABLED_RBIMG_STR = "images\White_Green_rb_corner.gif"
  67.  
  68. Const DB_DISABLED_LTIMG_STR = "images\White_Yellow_lt_corner_tran.gif"
  69. Const DB_DISABLED_LBIMG_STR = "images\White_Yellow_lb_corner_tran.gif"
  70. Const DB_DISABLED_RTIMG_STR = "images\White_Yellow_rt_corner_tran.gif"
  71. Const DB_DISABLED_RBIMG_STR = "images\White_Yellow_rb_corner_tran.gif"
  72.  
  73. Const DB_NOT_INSTALLED_STRTLT_STR = "images\signal_rd.gif"
  74. Const DB_ENABLED_STRTLT_STR = "images\signal_gr.gif"
  75. Const DB_DISABLED_STRTLT_STR = "images\signal_yellow.gif"
  76.  
  77. Const DB_NO_PROD_INSTALLED = 0
  78. Const DB_PROD_ENABLED = 1
  79. Const DB_PROD_DISABLED = 2
  80.  
  81.  
  82. Const LINK_RENEW_VSO_URL = "VSO_RenewalUrl"
  83. Const LINK_RENEW_MPF_URL = "MPF_RenewalUrl"
  84. Const LINK_RENEW_MPS_URL = "MPS_RenewalUrl"
  85. Const LINK_RENEW_MSK_URL = "MSK_RenewalUrl"
  86.